home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / x / gui / x3d.lha / x3d / hull / Makefile < prev   
Encoding:
Makefile  |  1992-10-08  |  605 b   |  17 lines

  1. #CFLAGS = -g -Wall -Wtraditional -Wshadow -Wpointer-arith -Wcast-qual \
  2. -Wcast-align -Wwrite-strings -Wconversion -Waggregate-return \
  3. -Wstrict-prototypes -Winline -ansi -pedantic 
  4.  
  5. CFLAGS = -O6 -fno-force-mem -fno-force-addr -fomit-frame-pointer \
  6. -finline-functions -fcaller-saves -fstrength-reduce -fthread-jumps \
  7. -funroll-loops -frerun-cse-after-loop -fexpensive-optimizations \
  8. -fdelayed-branch -fschedule-insns -fschedule-insns2 -fthread-jumps
  9.  
  10. # Also add -mcpu=??? option to the above if available on your machine
  11.  
  12. LIBS   = -lm
  13.   CC   = gcc 
  14.  
  15. hull: hull.c
  16.     $(CC) $(CFLAGS) -o hull hull.c $(LIBS) 
  17.